home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue51 / Construc / CGI51.dpr < prev    next >
Text File  |  1999-09-24  |  251b  |  17 lines

  1. program CGI51;
  2.  
  3. {$APPTYPE CONSOLE}
  4.  
  5. uses
  6.   WebBroker,
  7.   CGIApp,
  8.   WebMod in 'WebMod.pas' {WebModule1: TWebModule};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Initialize;
  14.   Application.CreateForm(TWebModule1, WebModule1);
  15.   Application.Run;
  16. end.
  17.